// Functions for use with most GrasslandsGroup.com pages

function openWin(loc,mywidth,myheight){
	var atrib="width="+mywidth+",height="+myheight+",resizable=no,dependent=yes"; 
	newWin=window.open(loc, 'satpage', atrib);
}

function openWin2(loc,mywidth,myheight,sb){
	var atrib="width="+mywidth+",height="+myheight+",resizable=no,dependent=yes";
	if(sb=="Y"){
		atrib=atrib+", scrollbars=yes";
	}
	newWin=window.open(loc, 'respage', atrib);
}

function openForm(form,loc,mywidth,myheight,sb){
	var atrib="width="+mywidth+",height="+myheight+",resizable=no,dependent=yes";
	if(sb=="Y"){
		atrib=atrib+", scrollbars=yes";
	}
	eval("document."+form).target='formpage';
	newWin=window.open(loc, 'formpage', atrib);
}
