function popUp(strURL,strType,strHeight,strWidth) {
	var strOptions="";
	if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
	window.open(strURL, 'newWin', strOptions);
}

function popUpVideo(strURL,strType) {
	var strOptions="";
	if (strType=="console") strOptions="resizable,height=500,width=600";
	if (strType=="fixed") strOptions="status,height=500,width=600";
	if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height=500,width=600";
	window.open(strURL, 'newWin', strOptions);
}

function popUpAudio(strURL,strType) {
	var strOptions="";
	if (strType=="console") strOptions="resizable,height=500,width=600";
	if (strType=="fixed") strOptions="status,height=500,width=600";
	if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height=500,width=600";
	window.open(strURL, 'newWin', strOptions);
}