var Window
function openWindow (url,left,top,width,height) {
	openString = "left="+left+",top="+top+",width="+width+",height="+height;
	Window=window.open(url,'lalala',openString);
}