//-------------------------------//
//           website by          //
//         Andrew Levine         //
//   coppertop@wonder-drug.com   //
//-------------------------------//

// video selector
function playVideo(sourceId, targetId) {
	if (typeof(sourceId)=='string') {
		sourceId=document.getElementById(sourceId);
	}
	if (typeof(targetId)=='string') {
		targetId=document.getElementById(targetId);
	}
	targetId.innerHTML=sourceId.innerHTML;
	return false;
}

//custon new window opener
var win = null;
function NewWindow(mypage,myname,w,h,scroll,tool,loca){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',toolbar='+tool+',location='+loca+',resizable'
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}

//mouseover sound
function EvalSound(soundobj) {
	var thissound=document.getElementById(soundobj);
	thissound.Play();
}

//launch the preview site
function launchPreview() {
	window.open("http://www.diamondalignment.com/flashindex.php", "_blank", "status=1,scrollbars=yes,resizable=1,toolbar=0,menubar=0,fullscreen=1");
}

//launch the main site
function launchMain() {
	window.open("http://www.diamondalignment.com/", "_blank", "status=1,scrollbars=yes,resizable=1,toolbar=0,menubar=0,fullscreen=0");
}