function openPopup(URL, name, width, height){
	if (window.screen) {
		var left = (screen.width - width) / 2;															
		var top = (screen.height - height) / 2;
		var screenPosition = 'left=' + left + ',top=' + top;
	}
	thisWin = window.open(URL, name, 'width=' + width + ',height=' + height + ',toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no' + ((screenPosition != '') ? ',' + screenPosition : ''));
	thisWin.focus();
}

function openPopupWeb(URL, name, width, height){
	if (window.screen) {
		var left = (screen.width - width) / 2;															
		var top = (screen.height - height) / 4;
		var screenPosition = 'left=' + left + ',top=' + top;
	}
	thisWin = window.open(URL, name, 'width=' + width + ',height=' + height + ',toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes' + ((screenPosition != '') ? ',' + screenPosition : ''));
	thisWin.focus();
}

function openPopupResize(URL, name, width, height){
	if (window.screen) {
		var left = (screen.width - width) / 2;															
		var top = (screen.height - height) / 2;
		var screenPosition = 'left=' + left + ',top=' + top;
	}
	thisWin = window.open(URL, name, 'width=' + width + ',height=' + height + ',toolbar=no,location=no,status=no,menubar=yes,scrollbars=yes,resizable=yes' + ((screenPosition != '') ? ',' + screenPosition : ''));
	thisWin.focus();
}


function portfolioPopup(URL, name){
	openPopup(URL, name,'352','348');
}

function webPopup(URL, name){
	openPopupWeb(URL, name,'817','495');
}

function resumePopup(URL, name){
	openPopupResize(URL, name,'720','460');
}

function requirementsPopup(URL, name){
	openPopup(URL, name,'352','348');
}