/*new window*/
function newWinPreview(url) {
	newwindow=window.open(url,'name','status=1,scrollbars=1,height=700,width=800');
	if (window.focus) {newwindow.focus()}
	return false;
}

function newWinDelete(url) {
	newwindow=window.open(url,'name','status=1,scrollbars=1,height=150,width=300');
	if (window.focus) {newwindow.focus()}
	return false;
}




/*end*/