JS打开新窗口

function openNewWnd(url,title)
{
	newwindow = window.open(url, title, 
		'toolbar=no,menubar=no, scrollbars=no, width=500,height=200');
	newwindow.focus();
	return false;
}

Leave a Reply

Your email address will not be published. Required fields are marked *

*