function launchURL(url,name,width,height,x,y) {
    window.name = "_newshome";
    var ItsTheWindow;
    ItsTheWindow = window.open(url,name,"width="+width+",height="+height+",left="+y+",top="+x+",status=no,scrollbars=yes,resizable=no,toolbar=no");
	ItsTheWindow.focus();

}

