function PopUp(Url,WinName,Width,Height)
{
LeftPosition	= (screen.availWidth) ? (screen.availWidth-Width)/2 : 0;  //screen.width-700
TopPosition		= (screen.availHeight) ? (screen.availHeight-Height)/2 : 0;

PopUpWind = window.open(Url,WinName,'menubar=no,scrollbars=no,resizable=no, toolbar=no,directories=no,left='+LeftPosition+' , top='+TopPosition+', width='+ Width +',height=' + Height)
PopUpWind.focus()
}

function PopUp4(Url,WinName,Width,Height)
{
LeftPosition	= (screen.availWidth) ? (screen.availWidth-Width)/2 : 0;  //screen.width-700
TopPosition		= (screen.availHeight) ? (screen.availHeight-Height)/2 : 0;

PopUpWind = window.open(Url,WinName,'menubar=no,scrollbars=yes,resizable=yes, toolbar=no,directories=no,left='+LeftPosition+' , top='+TopPosition+', width='+ Width +',height=' + Height)
PopUpWind.focus()
}

function AskQuestion()
{	
	LeftPosition	= (screen.availWidth) ? (screen.availWidth-700)/2 : 0;  //screen.width-700
	TopPosition		= (screen.availHeight) ? (screen.availHeight-550)/2 : 0;

	askwin=window.open("../AskExpertsIncludes/AskQuestion.asp","askwin", " dependent=no ,menubar=no,toolbar=no,scrollbars=no, directories=no, left="+LeftPosition+" , top="+TopPosition+" ,height=300, width=720"); 
	askwin.focus()
}
function OpenPic(FilePath)
{	
	w_height=350
	LeftPosition	= (screen.availWidth) ? (screen.availWidth-350)/2 : 0;  //screen.width-700
	TopPosition		= (screen.availHeight) ? (screen.availHeight-350)/2 : 0;

	Picwind=window.open("commonIncludes/openpic.asp?FilePath="+FilePath,"Picwin"," dependent=no ,menubar=no,toolbar=no,scrollbars=no, directories=no, left="+LeftPosition+" , top="+TopPosition+" ,height= 350 , width=350"); 
	Picwind.focus()
}