function viewSwf(URL,width,height){
	document.writeln("<object type='application/x-shockwave-flash' width='"+width+"' height='"+height+"' data='"+URL+"'>");
	document.writeln("<param name='movie' value='"+URL+"' />");
	document.writeln("<param name='quality' value='high' />");
	document.writeln("</object>");
}
function viewYoutube(URL,width,height){
	document.writeln("<object width='"+width+"' height='"+height+"'>");
	document.writeln("<param name='movie' value='"+URL+"' />");
	document.writeln("<embed src='"+URL+"' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"' />");
	document.writeln("</object>");
}
function myChgPic(myPicURL){
	document.getElementById("myBigImage").src = myPicURL;
}
function preLoad(val){
    for (var i = 0; i < 5; i++){
		document.img = new Image();
		document.img.src = './img/girl/pc_main_'+ val +'_'+ i +'.jpg';
	}
}
function hyperMail(URL){
	window.open(URL, 'MailMagazine', 'width=450, height=300, menubar=no, toolbar=no, scrollbars=no');
	return false;
}
function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&
			anchor.getAttribute("rel") == "external")
		anchor.target = "_blank";
	}
}
window.onload = externalLinks;