function small_win(path_str)
{
	//window.alert("passed path: " + path_str);
	window.open(path_str,"","height=180,width=400,scrollbars,resizable=yes");
}

function mini_win(path_str)
{
	//window.alert("passed path: " + path_str);
	path_str = window.location.protocol + "//" + window.location.host + path_str;
	//window.alert("full path: " + path_str);
	window.open(path_str,"","height=330,width=400,scrollbars,resizable=yes");
}


function medium_win(path_str)
{
	path_str = window.location.protocol + "//" + window.location.host + path_str;
//	window.alert(path_str);
	window.open(path_str,"","height=500,width=530,scrollbars=1,resizable=yes");
}

function edit_win(path_str)
{
	path_str = window.location.protocol + "//" + window.location.host + path_str;
//	window.alert(path_str);
	window.open(path_str,"","height=700,width=800,scrollbars=1,resizable=yes,status=yes");
}



function natural_win(path_str)
{
//	window.alert(path_str);
	window.open(path_str,"","scrollbars=1,resizable=yes");
}


