/* 
-------------------------------------------
NAME:			Basic JavaScript functions
VERSION:		1.1
CREATED BY: 	Corey Szopinski (corey@domanistudios.com) for Domani Studios
MODIFIED:		Corey 5/14/04
------------------------------------------- */


function popup(link, width, height) { //1.0
	var w		= width ? width : 360;
	var h 		= height ? height : 320;
	var wScroll	= "yes";
	var winl	= 10;
	var wint	= 10;
	var winName = 'pop';
	var theURL 	= link;
	
	var features='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+wScroll+',resizable=yes,status=no,toolbar=no,menubar=no,location=no';
	
	window.open(theURL, winName, features);
}

function popup_noScroll(link, width, height) { //1.0
	var w		= width ? width : 360;
	var h 		= height ? height : 320;
	var wScroll	= "no";
	var winl	= 10;
	var wint	= 10;
	var winName = 'pop';
	var theURL 	= link;
	
	var features='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+wScroll+',resizable=yes,status=no,toolbar=no,menubar=no,location=no';
	
	window.open(theURL, winName, features);
}