function popItUp(args) {
	var tmp = args.split('|');
	var theURL = tmp[0];
	var winName = tmp[1];
	var features = tmp[2];
	window.open(theURL,winName,features);
}