function P2IWinOpen(whatwin){win=open(whatwin,"popup","resize=no,status=no,scrollbars=no,toolbar=no,directories=no,menubar=no,width=999,height=650");win.focus();}function WinOpen(whatwin){win=open(whatwin,"popup","resize=no,status=no,scrollbars=no,toolbar=no,directories=no,menubar=no,width=999,height=650");win.focus();}function efriend(whatwin){win=open(whatwin,"popup","resize=no,status=no,scrollbars=no,toolbar=no,directories=no,menubar=no,width=440,height=340");win.focus();}function MywinOpen(URL, windowName, width, height, resizable, location, menubar, scrollbars, status, toolbar){	var windowFeatures;	windowFeatures = '';	if (width != '' && width != null){		windowFeatures = windowFeatures+'width='+width+',';	}	if (height != '' && height != null){		windowFeatures = windowFeatures+'height='+height+',';	}	if (resizable){		windowFeatures = windowFeatures+'resizable,';	}	if (location){		windowFeatures = windowFeatures+'location,';	}	if (menubar){		windowFeatures = windowFeatures+'menubar,';	}	if (scrollbars){		windowFeatures = windowFeatures+'scrollbars,';	}	if (status){		windowFeatures = windowFeatures+'status,';	}	if (toolbar){		windowFeatures = windowFeatures+'toolbar,';	}	window.open(URL, windowName, windowFeatures);}